<style>
  .news-form {
    background-color: #007BFF;  /* Blue button */
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;        /* Rounded corners */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .news-form:hover {
    background-color: #0056b3;  /* Darker blue on hover */
  }

  #email {
    padding: 10px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    width: 100%;
    max-width: 300px;
  }

  p {
    margin-bottom: 15px;
  }
</style>

<p>
  <input type="email" id="email" name="EMAIL" placeholder="Your email address" required>
</p>

<p>
  <input type="submit" class="news-form" value="Sign up Now">
</p>
